Skip to content

Instantly share code, notes, and snippets.

@cereblab
cereblab / grok-build-cli-wire-analysis.md
Last active July 12, 2026 21:21
What xAI Grok Build CLI actually sends to xAI - a wire-level analysis (grok 0.2.93)

What xAI's Grok Build CLI Actually Sends to xAI: A Wire-Level Analysis

By @cereblab — Independent AI Safety Checker. Reproduce it yourself: github.com/cereblab/grok-build-exfil-repro

A measured, reproducible teardown. Findings are backed by captured artifacts (endpoint, HTTP method, status code, byte size, host) and repro commands; where an observation was seen live but not retained as a file, §7 says so explicitly. Section 8 is an evidence appendix with SHA-256s and a "what we did not prove" list. All captures are of my own traffic on my own machine, using a throwaway repository containing fake "canary" secrets — no real credentials were exposed.


0. Summary

@HarryAnkers
HarryAnkers / GUIDE.md
Last active July 12, 2026 21:17
NVIDIA Virtual Display for Sunshine/Moonlight on Linux — No Dummy Plug Required (4K@120Hz, HDR, Custom Resolutions)

NVIDIA Virtual Display for Sunshine/Moonlight on Linux — No Dummy Plug Required

A guide for creating a virtual display on an NVIDIA GPU (tested on RTX 5080, driver 595.58) with HDR, custom resolutions, and 4K@120Hz support for headless Sunshine/Moonlight streaming on Linux.

Works on both HDMI and DisplayPort connectors with no physical display or dummy plug connected.

The Problem

Running Sunshine headless on Linux with NVIDIA is painful:

@malte9799
malte9799 / collection_preview.js
Last active July 12, 2026 21:16
Jellyfin – Collection Preview
/**
* Jellyfin Collection Preview
* ---------------------------------------------
* Hover a BoxSet (collection) card and its poster images spread out,
* rising half out of the card like a hand of cards being opened.
*
* The preview tracks your mouse: the tile nearest the cursor rotates
* upright, comes to the front with a white ring and its title, and
* its neighbours part around it all driven continuously by pointer
* position for a fluid feel. Click a tile to jump to that item.
@tykurtz
tykurtz / grokking_to_leetcode.md
Last active July 12, 2026 21:12
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@SMUsamaShah
SMUsamaShah / list_of_p2p_file_sharing.md
Last active July 12, 2026 21:12
List of P2P file sharing tools

Browser Based

  1. Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
  2. Localsend https://web.localsend.org/
  3. FilePizza https://file.pizza/
  4. ShareDrop sharedrop.io https://github.com/szimek/sharedrop (SOLD, not recommended, use one of the forks)
    1. A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop (SOLD, not recommended, use one of the forks)
      1. A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
  5. ToffeeShare https://toffeeshare.com/
  6. Instant.io https://instant.io/
@mmozeiko
mmozeiko / !README.md
Last active July 12, 2026 21:11
Download MSVC compiler/linker & Windows SDK without installing full Visual Studio

This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.

Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.

You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.

To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.

To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).

@Erutan409
Erutan409 / gitlab.rb
Last active July 12, 2026 21:06
Gitlab Nginx Reverse Proxy Configuration (with Let's Encrypt SSL)
# These are fragments of the configuration that will need to be updated
# ---
## GitLab URL
##! URL on which GitLab will be reachable.
##! For more details on configuring external_url see:
##! https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-the-external-url-for-gitlab
external_url 'https://gitlab.your-fqdn.com'
#external_url 'http://gitlab.internal.lan'
@Arclite
Arclite / devcontainer.json
Created November 20, 2022 22:51
Swift Dev Container
{
"name": "Swift",
"image": "swift:5.7",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"onCreateCommand": "apt update && apt install -y libpython3-dev python3-lldb && ln -s /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb/* /usr/lib/python3/dist-packages/lldb/",
"settings": {
@pkoppstein
pkoppstein / schema.jq
Last active July 12, 2026 21:05
schema.jq
module {
"name": "schema",
"description": "JSON Schema Inference",
"version": "0.0.3.1",
"homepage": "https://gist.github.com/pkoppstein/a5abb4ebef3b0f72a6ed",
"license": "MIT",
"author": "pkoppstein at gmail dot com"
};
# NEWS:
@edygert
edygert / schema.jq
Last active July 12, 2026 21:04
jq script to show the schema of a JSON file
paths
| join(".")
| select(test("[.][1-9][0-9]*[.|$]?") | not)
| gsub("[.]0[.]"; "[].")
| sub("[.]0$"; "[]")
| sub("^"; ".")